
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(255, 249, 242, 0.9), rgba(255, 249, 242, 0.95)), url('https://images.unsplash.com/photo-1555507036-ab794f27d2e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f7a8b8' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-title {
            margin-bottom: 30px;
            text-align: center;
        }

        .page-intro {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-color);
            line-height: 1.8;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
        }

        .section-title p {
            font-size: 1.3rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 25px auto 0;
            line-height: 1.8;
        }

        /* Gallery Filters */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            background-color: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(247, 168, 184, 0.536);
             box-shadow: 0 8px 15px rgba(246, 148, 168, 0.721);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 280px;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .gallery-caption h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .gallery-caption p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* ===== FIXED VIDEO STYLES - ASPECT RATIO 16:9, NO THUMBNAIL ===== */
        .video-grid {
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .video-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16 / 9 !important;
            width: 100%;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background-color: #000;
        }

        .video-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            z-index: 2;
        }

        .video-item video {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            background-color: #000;
            display: block;
        }

        /* Video Controls - Always Visible */
        .video-item video::-webkit-media-controls {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .video-item video::-webkit-media-controls-panel {
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background-color: rgba(247, 168, 184, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s;
            z-index: 2;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            pointer-events: none;
        }

        .video-item:hover .video-play-btn {
            background-color: var(--primary-color);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-btn i {
            margin-left: 5px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.973) 80%);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            pointer-events: none;
        }

        .video-item:hover .video-overlay {
            opacity: 1;
        }

        .video-caption {
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s;
        }

        .video-item:hover .video-caption {
            transform: translateY(0);
        }

        .video-caption h3 {
            color: rgb(255, 255, 255);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .video-caption p {
            color: rgb(255, 255, 255);
            font-size: 0.9rem;
        }


        
        .video-duration {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 20px;
            font-size: 1.2rem;


            
        }


        .lightbox-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: white;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: var(--primary-color);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .lightbox-prev, .lightbox-next {
            color: white;
            font-size: 3rem;
            cursor: pointer;
            transition: color 0.3s;
            background-color: rgba(0, 0, 0, 0.5);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-prev:hover, .lightbox-next:hover {
            color: var(--primary-color);
            background-color: rgba(0, 0, 0, 0.7);
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 1000px;
        }

        .video-player {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            aspect-ratio: 16/9;
            object-fit: contain;
            background: #000;
        }

        .video-modal-caption {
            color: white;
            text-align: center;
            margin-top: 25px;
            font-size: 1.3rem;
        }

        .video-modal-caption h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: white;
        }

        .video-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .video-modal-close:hover {
            color: var(--primary-color);
        }

        /* Instagram Banner with TikTok & Facebook */
        .instagram-banner {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            padding: 50px 0;
            text-align: center;
            margin: 80px 0;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .instagram-banner:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }

        .instagram-content {
            position: relative;
            z-index: 1;
        }

        .instagram-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .instagram-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-buttons-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 15px 35px;
            border-radius: 35px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            font-size: 1.2rem;
            min-width: 200px;
        }

        .instagram-btn {
            background-color: white;
            color: #E1306C;
        }

        .tiktok-btn {
            background-color: var(--tiktok-color);
            color: white;
        }

        .facebook-btn {
            background-color: var(--facebook-color);
            color: white;
        }

        .instagram-btn:hover {
            background-color: var(--dark-color);
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .tiktok-btn:hover {
            background-color: #333333;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .facebook-btn:hover {
            background-color: #166FE5;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .social-btn i {
            font-size: 1.5rem;
        }

        /* Footer
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 100px 0 40px;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C999.2,19.8,873.3,96.3,500,97z' fill='%233E2723'/%3E%3C/svg%3E");
            background-size: 100% 120px;
            background-position: top;
            background-repeat: no-repeat;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .footer-about p {
            margin-bottom: 30px;
            opacity: 0.85;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .footer-links h3, .footer-contact h3 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 18px;
        }

        .footer-links ul li a {
            color: var(--light-color);
            text-decoration: none;
            opacity: 0.85;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1.05rem;
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--primary-color);
            transform: translateX(8px);
        }

        .footer-contact p {
            margin-bottom: 25px;
            opacity: 0.85;
            display: flex;
            align-items: flex-start;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .footer-contact i {
            margin-right: 18px;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 3px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.12);
            color: var(--light-color);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.4s;
            text-decoration: none;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-color), #FF80AB);
            transform: translateY(-8px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        } */


   

        
/* 
        .social-icon.facebook {
            background: linear-gradient(135deg, var(--facebook-color), #4C6EF5);
        }

        .social-icon.tiktok {
            background: linear-gradient(135deg, var(--tiktok-color), #69C9D0, #EE1D52);
        }





        .social-icon.instagram{
            background: linear-gradient(135deg, var(--instagram-color), #833AB4, #F77737);
        }

        .social-icon.whatsapp:hover {
            background: linear-gradient(135deg, var  #25D366, #128C7E);
        } */





        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 1rem;
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }

        .copyright i.fa-heart {
            color: var(--primary-color);
            margin: 0 5px;
            animation: heartbeat 1.5s infinite;
        }

        @keyframes heartbeat {
            0% { transform: scale(1); }
            5% { transform: scale(1.2); }
            10% { transform: scale(1.1); }
            15% { transform: scale(1.3); }
            50% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        /* ===== RESPONSIVE BREAKPOINTS - POORA PAGE RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1100px) {
            h2 {
                font-size: 2.5rem;
            }
            .section-title h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .page-header-content h1 {
                font-size: 50px;
            }
        }

        @media (max-width: 900px) {
            .gallery-item {
                height: 250px;
            }
            .video-item {
                height: auto;
            }
            .social-buttons-container {
                flex-direction: column;
                align-items: center;
            }
            .social-btn {
                min-width: 250px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 25px;
                box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
                z-index: 100;
                border-top: 2px solid var(--light-color);
            }
            
            nav ul.show {
                display: flex;
            }
            
             nav ul li {
                margin: 18px 0;
            }
            
           
            
            nav ul li a {
                display: block;
                padding: 12px 20px;
                width: 100%;
            }
            
            nav ul li a.active {
                padding: 12px 20px;
            }
            
           
            
            .page-header {
                padding: 100px 0 60px;
            }
            .page-header-content h1 {
                font-size: 50px;
            }
            
            .gallery-section {
                padding: 80px 0;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-item {
                height: 250px;
            }
            
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logo-main {
                font-size: 2.3rem;
            }
            
            .logo-circle {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            
            .instagram-content h3 {
                font-size: 2rem;
            }
            .filter-btn {
                padding: 8px 16px;
                font-size: 20px;
            }
            .video-play-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .logo-main {
                font-size: 2rem;
            }
            
            .logo-circle {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
                margin-right: 15px;
            }
            
            .logo-tagline {
                font-size: 0.85rem;
                letter-spacing: 1px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .gallery-item {
                height: 200px;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .instagram-content h3 {
                font-size: 1.8rem;
            }
            
            .instagram-content p {
                font-size: 1.1rem;
            }
            
            .filter-btn {
                padding: 6px 12px;
                font-size: 20px;
            }

            .social-btn {
                padding: 12px 25px;
                font-size: 1rem;
                min-width: 220px;
            }
            .page-header-content h1 {
                font-size: 50px;
            }
            .container {
                padding: 0 12px;
            }
            .video-play-btn {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
        }
        

        @media (max-width: 375px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .filter-btn {
                padding: 5px 10px;
                font-size: 20px;
            }
            .video-play-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
            .gallery-item {
                height: 280px;
            }
        }
       


/* NEW NAV BAR */

        
        :root {
            --primary-color: #F7A8B8;
            --secondary-color: #5D4037;
            --accent-color: #FFD54F;
            --light-color: #FFF9F2;
            --dark-color: #3E2723;
            --text-color: #4E342E;
            --white: #FFFFFF;
            --instagram-color: #E1306C;
            --tiktok-color: #000000;
            --facebook-color: #1877F2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-color);
        }

        h1 {
            font-size: 3.8rem;
            font-family: 'Dancing Script', cursive;
            color: var(--primary-color);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        }

        h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }

        h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .logo-container:hover {
            transform: scale(1.03);
        } 
.page-title {
            margin-bottom: 30px;
            text-align: center;
        }
        
    
/* 
.logo-img-container {
    position: relative;
    margin-right: 20px;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(247, 168, 184, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
}

        .logo-circle:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 20%);
            transform: rotate(30deg);
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            letter-spacing: 1px;
        }

        .logo-tagline {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 5px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 35px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s;
            position: relative;
            padding: 8px 0;
            display: inline-block;
        }

        nav ul li a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 2px;
        }

        nav ul li a:hover:after {
            width: 100%;
               } */
                
          /* ACTIVE LINK STYLES  */


        /* nav ul li a.active {
            color: var(--primary-color);
            font-weight: 700; */
            /* background-color: rgba(247, 168, 184, 0.1); */
            /* padding: 8px 12px;
            border-radius: 8px;
        }

        nav ul li a.active:after {
            width: 100%;
            height: 4px;
            bottom: -5px;
        }

        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
            transition: color 0.3s;
        }

        .mobile-menu:hover {
            color: var(--primary-color);
        }
